This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:
RE: Need to get the Attachment Icon using Notes C++ 2.4 ~Kim Renuverakoi 22.Jan.04 05:52 AM a Web browser Toolkits All ReleasesWindows XP
I have tried several approaches but still can not get it to work. I created the code like below to export the graphic from a LNGraphic object but this causes an address exception.
// This is part of the code that searches through the Rich Text Item and identifies
else if (Obj.IsType(LNRTTYPE_ATTACHMENT))
{
c2 = Cursor;
Cursor++;
ProcessAttachment(rt, Obj, c2, HtmlString);
}
// This is the code in the ProcessAttachment routine to export the Graphic
LNGraphic AttachIcon;
// RTAtt is the Attachment Rich text object
RTAtt.GetGraphic(&AttachIcon);